home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
hypercrd
/
hc2_x
/
tcprogud.sit
/
TC Prog Guide
/
card_41262.txt
< prev
next >
Wrap
Text File
|
1991-02-27
|
2KB
|
86 lines
-- card: 41262 from stack: in
-- bmap block id: 0
-- flags: 0000
-- background id: 4755
-- name:
-- part 1 (field)
-- low flags: 00
-- high flags: 0007
-- rect: left=30 top=78 right=296 bottom=478
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 4
-- text size: 9
-- style flags: 0
-- line height: 12
-- part name:
-- part contents for card part 1
----- text -----
----------------------------- TC version --------------------------
/*
* FILE: student.h
* AUTHOR: R.G.
* CREATED: June 25, 1990
*
* header for Student class
*/
# define _H_student
# include "person.h"
/******************************************************************
* derive Student class from Person
******************************************************************/
struct Student:Person
{
int student_num;
void set(void);
void print(void);
};
---------------------------- C++ version --------------------------
/*
* FILE: student.h
* AUTHOR: R.G.
* CREATED: June 25, 1990
*
* header for Student class
*/
# ifndef student_h
# define student_h
# include "person.h"
/******************************************************************
* derive Student class from Person
******************************************************************/
struct Student:Person
{
int student_num;
void set(void);
void print(void);
};
# endif
-- part contents for background part 7
----- text -----
135
-- part contents for background part 4
----- text -----
File 5 of 7: